home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / blf082b / makefile.lc5 < prev    next >
Makefile  |  1993-11-15  |  673b  |  41 lines

  1. #
  2. # Make file for BloufGate
  3. # Atari ST / Lattice C 5 version
  4. #
  5. # (c) 1992 F Arnaud
  6. #
  7. copt    = -ctu -w
  8. cdebug  = -d0
  9. libs    = lcs.lib
  10. head    = blouf.h
  11. objects = fug.o ufg.o misc.o config.o address.o pkt.o global.o killdupe.o
  12. #
  13. # Prog list
  14. #
  15. all : blouf.ttp slist.ttp
  16.  
  17. #
  18. # BloufGate Main program
  19. #
  20. blouf.ttp : main.o $(objects) $(head)
  21.     $(compils)clink cs.o main.o $(objects) LIB $(libs) TO blouf.ttp
  22.  
  23. #
  24. # Nodelist Compiler
  25. #
  26. slist.ttp : slist.o
  27.     $(compils)clink cs.o slist.o LIB $(libs) TO slist.ttp
  28.  
  29. #
  30. # File sticker
  31. #
  32. #uustick.ttp : uustick.o
  33. #
  34. # Implicit condition(s)
  35. #
  36. .c.o :
  37.     $(compils)lc.ttp $(copt) $(cdebug) $<
  38.     
  39. #
  40. #
  41.